entry: Fix gtk_entry_get_icon_at_pos()
authorBenjamin Otte <otte@redhat.com>
Sat, 16 Apr 2011 19:59:36 +0000 (21:59 +0200)
committerBenjamin Otte <otte@redhat.com>
Sat, 16 Apr 2011 20:31:24 +0000 (22:31 +0200)
The passed in coordinates are widget-relative, not window-relative.

gtk/gtkentry.c

index f3eb37ae414bf7f8fa4375976dcd5ff1752844b7..0c5fd5e3400703091ffee92907937875730739ec 100644 (file)
@@ -8267,10 +8267,11 @@ gtk_entry_get_icon_storage_type (GtkEntry             *entry,
 /**
  * gtk_entry_get_icon_at_pos:
  * @entry: a #GtkEntry
- * @x: the x coordinate of the position to find
+ * @x: the x coordinate of the position to fine
  * @y: the y coordinate of the position to find
  *
- * Finds the icon at the given position and return its index.
+ * Finds the icon at the given position and return its index. The
+ * position's coordinates are relative to the @entry's top left corner.
  * If @x, @y doesn't lie inside an icon, -1 is returned.
  * This function is intended for use in a #GtkWidget::query-tooltip
  * signal handler.
@@ -8290,7 +8291,7 @@ gtk_entry_get_icon_at_pos (GtkEntry *entry,
 
   g_return_val_if_fail (GTK_IS_ENTRY (entry), -1);
 
-  get_frame_size (entry, TRUE, &frame_x, &frame_y, NULL, NULL);
+  get_frame_size (entry, FALSE, &frame_x, &frame_y, NULL, NULL);
   x -= frame_x;
   y -= frame_y;